home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / management / MBeanServer.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  4.4 KB  |  86 lines

  1. package javax.management;
  2.  
  3. import java.io.ObjectInputStream;
  4. import java.util.Set;
  5. import javax.management.loading.ClassLoaderRepository;
  6.  
  7. public interface MBeanServer extends MBeanServerConnection {
  8.    ObjectInstance createMBean(String var1, ObjectName var2) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException;
  9.  
  10.    ObjectInstance createMBean(String var1, ObjectName var2, ObjectName var3) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException;
  11.  
  12.    ObjectInstance createMBean(String var1, ObjectName var2, Object[] var3, String[] var4) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException;
  13.  
  14.    ObjectInstance createMBean(String var1, ObjectName var2, ObjectName var3, Object[] var4, String[] var5) throws ReflectionException, InstanceAlreadyExistsException, MBeanRegistrationException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException;
  15.  
  16.    ObjectInstance registerMBean(Object var1, ObjectName var2) throws InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException;
  17.  
  18.    void unregisterMBean(ObjectName var1) throws InstanceNotFoundException, MBeanRegistrationException;
  19.  
  20.    ObjectInstance getObjectInstance(ObjectName var1) throws InstanceNotFoundException;
  21.  
  22.    Set<ObjectInstance> queryMBeans(ObjectName var1, QueryExp var2);
  23.  
  24.    Set<ObjectName> queryNames(ObjectName var1, QueryExp var2);
  25.  
  26.    boolean isRegistered(ObjectName var1);
  27.  
  28.    Integer getMBeanCount();
  29.  
  30.    Object getAttribute(ObjectName var1, String var2) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException;
  31.  
  32.    AttributeList getAttributes(ObjectName var1, String[] var2) throws InstanceNotFoundException, ReflectionException;
  33.  
  34.    void setAttribute(ObjectName var1, Attribute var2) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException;
  35.  
  36.    AttributeList setAttributes(ObjectName var1, AttributeList var2) throws InstanceNotFoundException, ReflectionException;
  37.  
  38.    Object invoke(ObjectName var1, String var2, Object[] var3, String[] var4) throws InstanceNotFoundException, MBeanException, ReflectionException;
  39.  
  40.    String getDefaultDomain();
  41.  
  42.    String[] getDomains();
  43.  
  44.    void addNotificationListener(ObjectName var1, NotificationListener var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException;
  45.  
  46.    void addNotificationListener(ObjectName var1, ObjectName var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException;
  47.  
  48.    void removeNotificationListener(ObjectName var1, ObjectName var2) throws InstanceNotFoundException, ListenerNotFoundException;
  49.  
  50.    void removeNotificationListener(ObjectName var1, ObjectName var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, ListenerNotFoundException;
  51.  
  52.    void removeNotificationListener(ObjectName var1, NotificationListener var2) throws InstanceNotFoundException, ListenerNotFoundException;
  53.  
  54.    void removeNotificationListener(ObjectName var1, NotificationListener var2, NotificationFilter var3, Object var4) throws InstanceNotFoundException, ListenerNotFoundException;
  55.  
  56.    MBeanInfo getMBeanInfo(ObjectName var1) throws InstanceNotFoundException, IntrospectionException, ReflectionException;
  57.  
  58.    boolean isInstanceOf(ObjectName var1, String var2) throws InstanceNotFoundException;
  59.  
  60.    Object instantiate(String var1) throws ReflectionException, MBeanException;
  61.  
  62.    Object instantiate(String var1, ObjectName var2) throws ReflectionException, MBeanException, InstanceNotFoundException;
  63.  
  64.    Object instantiate(String var1, Object[] var2, String[] var3) throws ReflectionException, MBeanException;
  65.  
  66.    Object instantiate(String var1, ObjectName var2, Object[] var3, String[] var4) throws ReflectionException, MBeanException, InstanceNotFoundException;
  67.  
  68.    /** @deprecated */
  69.    @Deprecated
  70.    ObjectInputStream deserialize(ObjectName var1, byte[] var2) throws InstanceNotFoundException, OperationsException;
  71.  
  72.    /** @deprecated */
  73.    @Deprecated
  74.    ObjectInputStream deserialize(String var1, byte[] var2) throws OperationsException, ReflectionException;
  75.  
  76.    /** @deprecated */
  77.    @Deprecated
  78.    ObjectInputStream deserialize(String var1, ObjectName var2, byte[] var3) throws InstanceNotFoundException, OperationsException, ReflectionException;
  79.  
  80.    ClassLoader getClassLoaderFor(ObjectName var1) throws InstanceNotFoundException;
  81.  
  82.    ClassLoader getClassLoader(ObjectName var1) throws InstanceNotFoundException;
  83.  
  84.    ClassLoaderRepository getClassLoaderRepository();
  85. }
  86.